home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20031118-20041115 / 000155_fdc@columbia.edu_Thu Mar 25 10:09:31 2004.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: Viewing man page on Linux RedHat makes screen go blank
  5. Date: 25 Mar 2004 15:08:11 GMT
  6. Organization: Columbia University
  7. Lines: 34
  8. Message-ID: <slrnc65ter.9j0.fdc@sesame.cc.columbia.edu>
  9. References: <6bd7331b.0403230622.794ab64@posting.google.com> <slrnc60if6.hrd.fdc@sesame.cc.columbia.edu> <6bd7331b.0403231315.2f7db3a1@posting.google.com> <10635eddgqdr8f4@corp.supernews.com> <6bd7331b.0403242036.33f9f263@posting.google.com> <1065ms6avtv5l00@corp.supernews.com>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1080227291 22967 128.59.59.56 (25 Mar 2004 15:08:11 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 25 Mar 2004 15:08:11 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14866
  17.  
  18. On 2004-03-25, Thomas Dickey <dickey@saltmine.radix.net> wrote:
  19. : ...
  20. : A vt220 interprets codes in the range 128-159 as control characters.
  21. : UTF-8 encoding uses those as continuation-bytes.
  22. :
  23. : Setting LANG to en_US (e.g., an ISO-8859-1) would probably work better.
  24. : I gather that kermit can handle UTF-8, but don't know what's involved
  25. : in setting it up (but it should be visible in the config-settings).
  26. :
  27. Kermit 95 has a little character-set selection box on its toolbar.
  28. It says "latin1-iso" by default (at least for VT terminal emulation).
  29. Click on the little arrow to open the list of character sets and select
  30. "utf8".
  31.  
  32. When Kermit's terminal character-set is UTF8, it decodes the UTF8 before
  33. parsing control codes or escape sequences (this might be backwards in
  34. terms of ISO layering, but there's no other choice).
  35.  
  36. For a quick sanity check, FTP a copy of this file:
  37.  
  38.   ftp://kermit.columbia.edu/kermit/charsets/glass.utf8
  39.  
  40. to the computer that you connect to with Kermit (it's only 1313 bytes long)
  41. and then 'cat' it.  You should see somthing akin to this:
  42.  
  43.   http://www.columbia.edu/kermit/glass2.gif
  44.  
  45. I'm not sure what effect the host's LANG variable would have on any of this.
  46. None I hope!  The only things you should have to watch out for are:
  47.  
  48.  . Make sure Kermit's terminal type agrees with the host TERM variable.
  49.  . Make sure Kermit's terminal character-set matches what the host sends.
  50.  
  51. - Frank